@@ -1,8 +1,9 @@ |
||
1 | 1 |
# Changes |
2 | 2 |
|
3 |
+* 0.3 (Jan 1, 2014) - Remove symbolization of memory, options, and payloads; convert memory, options, and payloads to JSON from YAML. Migration will perform conversion and adjust tables to be UTF-8. Recommend making a DB backup before migrating. |
|
3 | 4 |
* 0.2 (Nov 6, 2013) - PeakDetectorAgent now uses `window_duration_in_days` and `min_peak_spacing_in_days`. Additionally, peaks trigger when the time series rises over the standard deviation multiple, not after it starts to fall. |
4 | 5 |
* June 29, 2013 - Removed rails\_admin because it was causing deployment issues. Better to have people install their favorite admin tool if they want one. |
5 | 6 |
* June, 2013 - A number of new agents have been contributed, including interfaces to Weibo, Twitter, and Twilio, as well as Agents for translation, sentiment analysis, and for posting and receiving webhooks. |
6 |
-* March 24, 2013 (0.1) - Refactored loading of Agents for `check` and `receive` to use ids instead of full objects. This should fix the too-large delayed_job issues. Added `system_timer` and `fastercsv` to the Gemfile for the Ruby 1.8 platform. |
|
7 |
+* March 24, 2013 (0.1) - Refactored loading of Agents for `check` and `receive` to use ids instead of full objects. This should fix the too-large delayed\_job issues. Added `system_timer` and `fastercsv` to the Gemfile for the Ruby 1.8 platform. |
|
7 | 8 |
* March 18, 2013 - Added Wiki page about the [Agent API](https://github.com/cantino/huginn/wiki/Creating-a-new-agent). |
8 | 9 |
* March 17, 2013 - Switched to JSONPath for defining paths through JSON structures. The WebsiteAgent can now scrape and parse JSON. |
@@ -13,7 +13,10 @@ Huginn is a system for building agents that perform automated tasks for you onli |
||
13 | 13 |
* Track the weather and get an email when it's going to rain (or snow) tomorrow |
14 | 14 |
* Follow your project names on Twitter and get updates when people mention them |
15 | 15 |
* Scrape websites and receive emails when they change |
16 |
+* Compose digest emails about things you care about to be sent at specific times of the day |
|
17 |
+* Track counts of high frequency events and SMS on changes, such as the term "san francisco emergency" |
|
16 | 18 |
* Track your location over time |
19 |
+* Create Amazon Mechanical Turk tasks as the input, or output, of events |
|
17 | 20 |
|
18 | 21 |
Follow [@tectonic](https://twitter.com/tectonic) for updates as Huginn evolves, and join us in \#huginn on Freenode IRC to discuss the project. |
19 | 22 |
|
@@ -84,7 +87,7 @@ In order to use the WeatherAgent you need an [API key with Wunderground](http:// |
||
84 | 87 |
|
85 | 88 |
You can use [Post Location](https://github.com/cantino/post_location) on your iPhone to post your location to an instance of the UserLocationAgent. Make a new one to see instructions. |
86 | 89 |
|
87 |
-#### Enable DelayedJobWeb for handy delayed_job monitoring and control |
|
90 |
+#### Enable DelayedJobWeb for handy delayed\_job monitoring and control |
|
88 | 91 |
|
89 | 92 |
* Edit `config.ru`, uncomment the DelayedJobWeb section, and change the DelayedJobWeb username and password. |
90 | 93 |
* Uncomment `match "/delayed_job" => DelayedJobWeb, :anchor => false` in `config/routes.rb`. |
@@ -110,6 +113,5 @@ Please fork, add specs, and send pull requests! |
||
110 | 113 |
|
111 | 114 |
[](https://travis-ci.org/cantino/huginn) [](https://codeclimate.com/github/cantino/huginn) |
112 | 115 |
|
113 |
- |
|
114 | 116 |
[](https://bitdeli.com/free "Bitdeli Badge") |
115 | 117 |
|
@@ -1 +1 @@ |
||
1 |
-0.2 |
|
1 |
+0.3 |